LTE IoT 23 Click
LTE IoT 23 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.
Click Library
- Author : Stefan Filipovic
- Date : Aug 2025.
- Type : UART type
Software Support
Example Description
Application example shows device capability of connecting to the network and sending SMS or TCP/UDP messages using standard "AT" commands.
Example Libraries
- MikroSDK.Board
- MikroSDK.Log
- Click.LTEIoT23
Example Key Functions
- lteiot23_cfg_setup This function initializes Click configuration structure to initial values.
void lteiot23_cfg_setup(lteiot23_cfg_t *cfg)
LTE IoT 23 configuration object setup function.
LTE IoT 23 Click configuration object.
Definition lteiot23.h:194
- lteiot23_init This function initializes all necessary pins and peripherals used for this Click board.
err_t lteiot23_init(lteiot23_t *ctx, lteiot23_cfg_t *cfg)
LTE IoT 23 initialization function.
LTE IoT 23 Click context object.
Definition lteiot23.h:169
- lteiot23_set_sim_apn This function sets APN for sim card.
void lteiot23_set_sim_apn(lteiot23_t *ctx, uint8_t *sim_apn)
LTE IoT 23 set sim card APN function.
- lteiot23_send_sms_text This function sends text message to a phone number.
void lteiot23_send_sms_text(lteiot23_t *ctx, uint8_t *phone_number, uint8_t *sms_text)
LTE IoT 23 send SMS in text mode function.
- lteiot23_cmd_run This function sends a specified command to the Click module.
void lteiot23_cmd_run(lteiot23_t *ctx, uint8_t *cmd)
LTE IoT 23 cmd run function.
Application Init
Initializes the driver and logger.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
log_printf( &logger, ">>> APP STATE - POWER UP <<<\r\n\n" );
}
#define LTEIOT23_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition lteiot23.h:152
void application_init(void)
Definition main.c:214
@ LTEIOT23_POWER_UP
Definition main.c:94
Application Task
Application task is split in few stages:
- LTEIOT23_POWER_UP:
Powers up the device, performs a factory reset and reads system information.
- LTEIOT23_CONFIG_CONNECTION:
Sets configuration to device to be able to connect to the network.
- LTEIOT23_CHECK_CONNECTION:
Waits for the network registration indicated via CEREG command and then checks the signal quality report.
- LTEIOT23_CONFIG_EXAMPLE:
Configures device for the selected example.
- LTEIOT23_EXAMPLE:
Depending on the selected demo example, it sends an SMS message (in PDU or TXT mode) or TCP/UDP message. By default, the TCP/UDP example is selected.
{
switch ( app_state )
{
{
{
log_printf( &logger, ">>> APP STATE - CONFIG CONNECTION <<<\r\n\n" );
}
break;
}
{
if (
LTEIOT23_OK == lteiot23_config_connection( <eiot23 ) )
{
log_printf( &logger, ">>> APP STATE - CHECK CONNECTION <<<\r\n\n" );
}
break;
}
{
if (
LTEIOT23_OK == lteiot23_check_connection( <eiot23 ) )
{
log_printf( &logger, ">>> APP STATE - CONFIG EXAMPLE <<<\r\n\n" );
}
break;
}
{
if (
LTEIOT23_OK == lteiot23_config_example( <eiot23 ) )
{
log_printf( &logger, ">>> APP STATE - EXAMPLE <<<\r\n\n" );
}
break;
}
{
lteiot23_example( <eiot23 );
break;
}
default:
{
log_error( &logger, " APP STATE." );
break;
}
}
}
@ LTEIOT23_OK
Definition lteiot23.h:221
void application_task(void)
Definition main.c:247
@ LTEIOT23_EXAMPLE
Definition main.c:98
@ LTEIOT23_CONFIG_CONNECTION
Definition main.c:95
@ LTEIOT23_CONFIG_EXAMPLE
Definition main.c:97
@ LTEIOT23_CHECK_CONNECTION
Definition main.c:96
Note
In order for the examples to work, user needs to set the APN and SMSC (SMS PDU mode only) of entered SIM card as well as the phone number (SMS mode only) to which he wants to send an SMS. Enter valid values for the following macros: SIM_APN, SIM_SMSC and PHONE_NUMBER.
Example:
- SIM_APN "internet"
- SIM_SMSC "+381610401"
- PHONE_NUMBER "+381659999999"
Application Output
This Click board can be interfaced and monitored in two ways:
- Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
- UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Additional Notes and Information
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.